home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Multimedia / Movie3.0 / Source / xanim / Animation.h next >
Encoding:
C/C++ Source or Header  |  1995-06-02  |  1.1 KB  |  57 lines

  1.  
  2. /*
  3.  * xanim.h
  4.  *
  5.  * Copyright (C) 1990,1991,1992,1993,1994 by Mark Podlipec. 
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified and redistributed without
  9.  * fee for non-commerical purposes provided that this copyright notice is
  10.  * preserved intact on all copies and modified copies.
  11.  *
  12.  * There is no warranty or other guarantee of fitness of this software.
  13.  * It is provided solely "as is". The author(s) disclaim(s) all
  14.  * responsibility and liability with respect to this software's usage
  15.  * or its effect upon hardware or computer systems.
  16.  *
  17.  */
  18. #include "xanim.h"
  19.  
  20. #include <sys/time.h>
  21. #include <sys/fcntl.h>
  22. #include <appkit/NXBitmapImageRep.h>
  23. #include <appkit/NXImage.h>
  24.  
  25. /*
  26. typedef struct
  27.  LONG xpos;
  28.  LONG ypos;
  29.  LONG xsize;
  30.  LONG ysize;
  31.  NXImage *pixmap;
  32.  NXImage * clip;
  33. } ACT_PIXMAP_HDR;
  34.  
  35. typedef struct
  36.  LONG xpos;
  37.  LONG ypos;
  38.  LONG xsize;
  39.  LONG ysize;
  40.  NXBitmapImageRep *image;
  41.  UBYTE *clip;
  42. } ACT_IMAGE_HDR;
  43.  
  44. typedef struct
  45.  LONG xpos;
  46.  LONG ypos;
  47.  LONG xsize;
  48.  LONG ysize;
  49.  NXBitmapImageRep *image;
  50.  UBYTE *clip_ptr;
  51. } ACT_CLIP_HDR;
  52.  
  53. */
  54.